home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / newton / Makefile < prev    next >
Makefile  |  1994-08-01  |  619b  |  30 lines

  1.  
  2. include $(ROOT)/usr/include/make/commondefs
  3.  
  4. #
  5. # Makefile for newton demo
  6. #
  7.  
  8. TARGETS    = newton
  9. CVERSION=-xansi
  10. LLDLIBS    = -lgl -lm -lmpc
  11. LCOPTS    = -float
  12. # Gotta get rid of dependency on what machine it is being made on
  13. # -- should do it right, and not just assume most powerful machine,
  14. # but that involves changing a lot of code.
  15. LCDEFS = -DCLOVER2
  16. PROTOTYPES=
  17.  
  18. CFILES    = main.c play.c models.c physics.c draw.c slave.c slider.c cwd.c
  19. HFILES    = config.h newton.h windows.h slider.h
  20.  
  21. default all: $(TARGETS)
  22.  
  23. install:
  24.     $(MAKE) $(TARGETS)
  25.  
  26. include $(COMMONRULES)
  27.  
  28. ${TARGETS}: ${OBJECTS}
  29.     ${CCF} -o $@ ${OBJECTS} ${LDFLAGS}
  30.